home *** CD-ROM | disk | FTP | other *** search
/ Graphics & Sound Program…ng Techniques for the Mac / Graphics and Sound Programming Techniques for the Mac.iso / M&T Graphics & Sound Examples / Symantec Versions / C09 App-QuickTime / P01 Film Edit / WindRecordAccess.h < prev   
Encoding:
Text File  |  1995-08-05  |  784 b   |  25 lines  |  [TEXT/KAHL]

  1. //____________________________________________________________
  2. //    WindRecordAccess.h
  3. //
  4. //    Copyright © Dan Parks Sydow, 1995
  5. //    From the book:
  6. //    "Graphics and Sound Programming Techniques for the Mac",
  7. //    M&T Books, 1995
  8.  
  9.  
  10. //____________________________________________________________
  11.  
  12. #include <Movies.h>
  13.  
  14. void   SetWindowType( WindowPtr, short );
  15. void   SetWindowFileReference( WindowPtr, short );
  16. void   SetWindowMovieResourceID( WindowPtr, short );
  17. void   SetWindowMovie( WindowPtr, Movie );
  18. void   SetWindowController( WindowPtr, MovieController );
  19.  
  20. short  GetWindowType( WindowPtr );
  21. short  GetWindowFileReference( WindowPtr );
  22. short  GetWindowMovieResourceID( WindowPtr );
  23. Movie  GetWindowMovie( WindowPtr );
  24. MovieController  GetWindowController( WindowPtr );
  25.